projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fdc3f60
)
(compilation-error-regexp-alist): Allow
author
Dave Love
<fx@gnu.org>
Wed, 9 Jun 1999 17:57:05 +0000
(17:57 +0000)
committer
Dave Love
<fx@gnu.org>
Wed, 9 Jun 1999 17:57:05 +0000
(17:57 +0000)
digits in program name in first pattern.
lisp/progmodes/compile.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/compile.el
b/lisp/progmodes/compile.el
index 0d1ab0d7edfd210a39ac3616eba3322529eea59e..7b53d6ed4800c7ebbbfb04c8d517705a32b9f224 100644
(file)
--- a/
lisp/progmodes/compile.el
+++ b/
lisp/progmodes/compile.el
@@
-164,7
+164,7
@@
or when it is used with \\[next-error] or \\[compile-goto-error].")
;; We insist on a non-digit in the file name
;; so that we don't mistake the file name for a command name
;; and take the line number as the file name.
- ("\\([
-a-zA-Z._
]+: ?\\)?\
+ ("\\([
a-zA-Z][-a-zA-Z._0-9
]+: ?\\)?\
\\([a-zA-Z]?:?[^:( \t\n]*[^:( \t\n0-9][^:( \t\n]*\\)[:(][ \t]*\\([0-9]+\\)\
\\([) \t]\\|:\\(\\([0-9]+:\\)\\|[0-9]*[^:0-9]\\)\\)" 2 3 6)